SOCAT
socat
Table of Content
install#
sudo apt install socat
usage#
socat [options] <address> <address>
socat is a bidirectional stream protocol by default connect two data sources and stream data between them
Unidirectional Stream#
The -u flag means that the stream of data runs from the first argument to the second argument
The -U flag reverse the stream
socat -u arg1 arg2 is the same as socat -U arg2 arg1.